.top {
  width: 1200px;
  height: 36px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top .left {
  display: flex;
  align-items: center;
  position: relative;
}
.top .left span {
  cursor: pointer;
}
.top .left .city {
  display: block;
  margin: 0 10px;
}
.top .left .cityChange {
  color: #ed6000;
}
.top .left .change {
  height: 81px;
  width: 289px;
  padding: 10px 20px 20px 28px;
  border: 1px solid #f2f2f2;
  border-top: hidden;
  background-color: #fff;
  position: absolute;
  top: 36px;
  z-index: 999;
  display: none;
}
.top .left .change ul {
  display: flex;
  flex-wrap: wrap;
}
.top .left .change ul li {
  margin-right: 24px;
}
.top .left .change ul li span {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  line-height: 32px;
  cursor: pointer;
}
.top .left .change ul li:nth-child(5) {
  margin-right: 0;
}
.top .left:hover {
  height: 100%;
}
.top .left:hover .change {
  display: block;
}
.top .left:hover .change span:hover {
  color: #ed6000;
}
.top .right {
  display: flex;
}
.top .right span {
  cursor: pointer;
}
.top .right span:hover {
  color: #ed6000;
}
.top .right .i {
  width: 1px;
  height: 14px;
  background: #e0e0e0;
  margin: 0 12px;
}
